Don't reverse the order of modules when putting them in gtk_modules.
authorMatthias Clasen <mclasen@redhat.com>
Thu, 20 Jan 2005 13:33:44 +0000 (13:33 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Thu, 20 Jan 2005 13:33:44 +0000 (13:33 +0000)
2005-01-20  Matthias Clasen  <mclasen@redhat.com>

* gtk/gtkmodules.c (load_module): Don't reverse the order
of modules when putting them in gtk_modules.  (#162676, Dennis
Cranston, patch by Remus Draica)

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-8
gtk/gtkmodules.c

index 95a6e412ac324006b70606c6ace12e8524e8b718..7e7663276a4b3f766f16ec62d50a6b396eb2c645 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2005-01-20  Matthias Clasen  <mclasen@redhat.com>
 
+       * gtk/gtkmodules.c (load_module): Don't reverse the order
+       of modules when putting them in gtk_modules.  (#162676, Dennis
+       Cranston, patch by Remus Draica)
+
        * gtk/gtktreeview.c (gtk_tree_view_search_move): Don't crash 
        if the tree is empty.  (#164669, Priit Laes)
 
index 95a6e412ac324006b70606c6ace12e8524e8b718..7e7663276a4b3f766f16ec62d50a6b396eb2c645 100644 (file)
@@ -1,5 +1,9 @@
 2005-01-20  Matthias Clasen  <mclasen@redhat.com>
 
+       * gtk/gtkmodules.c (load_module): Don't reverse the order
+       of modules when putting them in gtk_modules.  (#162676, Dennis
+       Cranston, patch by Remus Draica)
+
        * gtk/gtktreeview.c (gtk_tree_view_search_move): Don't crash 
        if the tree is empty.  (#164669, Priit Laes)
 
index 95a6e412ac324006b70606c6ace12e8524e8b718..7e7663276a4b3f766f16ec62d50a6b396eb2c645 100644 (file)
@@ -1,5 +1,9 @@
 2005-01-20  Matthias Clasen  <mclasen@redhat.com>
 
+       * gtk/gtkmodules.c (load_module): Don't reverse the order
+       of modules when putting them in gtk_modules.  (#162676, Dennis
+       Cranston, patch by Remus Draica)
+
        * gtk/gtktreeview.c (gtk_tree_view_search_move): Don't crash 
        if the tree is empty.  (#164669, Priit Laes)
 
index 0bec50a574cef4430c87b9e02bb1cfc8a7a20908..e80a13ab613b81d746893df1bdb9e88b60aab113 100644 (file)
@@ -297,7 +297,7 @@ load_module (GSList      *module_list,
                      g_module_symbol (module, "gtk_module_display_init",
                                       (gpointer *) &info->display_init_func);
                      
-                     gtk_modules = g_slist_prepend (gtk_modules, info);
+                     gtk_modules = g_slist_append (gtk_modules, info);
                      
                      /* display_init == NULL indicates a non-multihead aware module.
                       * For these, we delay the call to init_func until first display is